TsgArc
Unit: DXFConv
Description
TsgArc
specifies the arc.
Value | Description |
---|---|
Rect | Bounding rectangle. |
Center | Center point. |
Point1 | Start point. |
Point2 | End point. |
Ang1 | End angle. |
Ang2 | Start angle. |
Rx | X axis radius. |
Ry | Y axis radius. |
Valid | Defines whether or not rectangle is valid. True – rectangle is valid. False – rectangle is invalid. |
Syntax
type
PsgArc = ^TsgArc;
TsgArc = record
Rect: TFRect;
Center, Point1, Point2: TFPoint;
Ang1, Ang2, Rx, Ry: Double;
Valid: Boolean;
end;